DicomObjects.NET Core Documentation
DicomObjects Namespace / DicomDataSet Class / AddByReference Method / AddByReference(Keyword,Byte[]) Method
Attribute tag to add
Attribute value as byte array



In This Topic
    AddByReference(Keyword,Byte[]) Method
    In This Topic
    Add byte[] as attribute value to avoid copying large data
    Syntax
    'Declaration
     
    
    Public Overloads Sub AddByReference( _
       ByVal keyword As Keyword, _
       ByVal Value() As Byte _
    ) 
    'Usage
     
    
    Dim instance As DicomDataSet
    Dim keyword As Keyword
    Dim Value() As Byte
     
    instance.AddByReference(keyword, Value)
    public void AddByReference( 
       Keyword keyword,
       byte[] Value
    )
    public:
    void AddByReference( 
       Keyword keyword,
       array<byte>^ Value
    ) 

    Parameters

    keyword
    Attribute tag to add
    Value
    Attribute value as byte array
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also